* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        :root {
            --primary: #0a192f;
            --secondary: #dfb429; /* Gold color */
            --accent: #ff6b6b;
            --glass: rgba(48, 41, 6, 0.27);
            --glass-header:rgba(255, 255, 254, 0.45);
            --glass-border: rgba(255, 255, 255, 0.1);
            --text: #eef2f7;;
            --gold-light: #f9e076;
            --gold-medium: #d4af37;
            --gold-dark: #b8860b;
            --dark-bg: #121212;
            --light-bg: #ffffff;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            color: var(--dark);
            background-color:  rgba(252, 246, 197, 0.7);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1, h2, h3, h4 {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
        }
          
h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}
   
        /* Glass Morphism Styles */
        .glass {
            background: var(--glass);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            /* border: 1px solid var(--glass-border); */
            border-radius: 0px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
            transition: all 0.4s ease;
        }

        .glass:hover {
            box-shadow: 0 12px 40px rgba(212, 175, 55, 0.25);
            border-color: rgba(212, 175, 55, 0.4);
        }

        /* Gold decorative elements */
        .gold-divider {
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--gold-medium), transparent);
            margin: 20px 0;
            border-radius: 2px;
        }

       
.container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
      /* button */
        .btn {
            padding: 12px 25px;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            text-align: center;
            font-size: 1rem;
        }

        .btn-primary {
            background: var(--secondary);
            color: var(--primary);
            border: 2px solid var(--secondary);
        }

        .btn-primary:hover {
            background: transparent;
            color: var(--secondary);
              border: 2px solid var(--secondary);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
        }

        .btn-outline {
            background: transparent;
            color: var(--secondary);
            border: 2px solid var(--secondary);
        }

        .btn-outline:hover {
            background: var(--secondary);
            color: var(--primary);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
        }  
        /* Header Styles */
    /* Section Styling */
        .section {
            padding: 80px 0;
        }
       .section-header {
            text-align: center;
            margin-bottom: 70px;
        }

        .section-header h2 {
            /* font-size: 2.8rem; */
            position: relative;
            display: inline-block;
            margin-bottom: 20px;
            font-family: 'Playfair Display', serif;
            color: var(--primary);
        }

        .section-header h2::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: var(--secondary);
            border-radius: 2px;
        }

        
        .section-header p {
            color: var(--navy-medium);
            max-width: 700px;
            margin: 25px auto 0;
            font-size: 1.1rem;
            line-height: 1.7;
        }
         
        
        /* Hero Section */
        .hero {
            height: 100vh;
            background:  linear-gradient(rgba(15, 13, 0, .8), var(--glass)), url(../images/A\ shiny\ golden\ piggy\ bank\ sitting\ on\ a\ lush\ green\ field.png) no-repeat center top/cover;
            display: flex;
            align-items: center;
            text-align: center;
            color: white;
            margin-top: 0px;
            padding-top: 70px;
        }
        
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
             margin-bottom: 2rem;
        }
        
        .hero h1 {
             /* font-size: 2.7rem; */
            margin-bottom: 1.5rem;
            line-height: 1.2;
            background: linear-gradient(to right, var(--gold-light), var(--gold-medium));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            font-family: 'Playfair Display', serif;
            letter-spacing: -0.5px;
               margin-top: 3em;
        }
        
        .hero p {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            opacity: 0.9;
            color: white;
        }
         /* WhatsApp Widget Styles */
        .whatsapp-widget {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 1000;
            display: flex;
            flex-direction: column;
            align-items: flex-end;
        }
        
        .whatsapp-bubble {
            background-color: #fff;
            border-radius: 24px;
            padding: 12px 20px;
            margin-bottom: 15px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
            position: relative;
            max-width: 220px;
            opacity: 1;
            transition: opacity 0.8s ease, transform 0.5s ease;
            transform: translateY(0);
            animation: floatBubble 3s ease-in-out infinite;
        }
        
        .whatsapp-bubble.hidden {
            opacity: 0;
            transform: translateY(20px);
            pointer-events: none;
        }
        
        .whatsapp-bubble:after {
            content: '';
            position: absolute;
            bottom: -8px;
            right: 30px;
            width: 0;
            height: 0;
            border-left: 10px solid transparent;
            border-right: 10px solid transparent;
            border-top: 10px solid #fff;
        }
        
        .whatsapp-bubble p {
            color: #333;
            font-weight: 500;
            font-size: 15px;
            margin: 0;
        }
        
        .whatsapp-bubble p i {
            color: #25D366;
            margin-right: 5px;
        }
        
        .whatsapp-button {
            background-color: #25D366;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
             overflow: visible !important;
        }
        
        .whatsapp-button:hover {
            background-color: #128C7E;
            transform: scale(1.1);
            box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
        }
        
        .whatsapp-button:active {
            transform: scale(0.95);
        }
        
        .whatsapp-button i {
            color: white;
            font-size: 32px;
        }
        
        .whatsapp-pulse {
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            z-index: -1;
           animation: whatsapp-pulse-fix 2s infinite !important;
    background-color: #25D366 !important;
    opacity: 0.7 !important;
        }
        
        /* .first-visit-message {
            position: fixed;
            top: 20px;
            right: 20px;
            background-color: #25D366;
            color: white;
            padding: 12px 20px;
            border-radius: 8px;
            font-weight: 500;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            z-index: 1001;
            transform: translateX(0);
            transition: transform 0.5s ease, opacity 0.5s ease;
        }
        
        .first-visit-message.hidden {
            transform: translateX(150%);
            opacity: 0;
        } */
        
        @keyframes floatBubble {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-8px); }
        }
     

        /* FIX FOR WHATSAPP PULSE */

@keyframes whatsapp-pulse-fix {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}
        /* Responsive design */
        @media (max-width: 768px) {
            .whatsapp-widget {
                bottom: 20px;
                right: 20px;
            }
            
            .whatsapp-bubble {
                max-width: 180px;
                font-size: 14px;
            }
            
            h1 {
                font-size: 2.2rem;
            }
            
            .content {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 480px) {
            .whatsapp-widget {
                bottom: 15px;
                right: 15px;
            }
            
            .whatsapp-button {
                width: 55px;
                height: 55px;
            }
            
            .whatsapp-button i {
                font-size: 28px;
            }
            
            .whatsapp-bubble {
                padding: 10px 15px;
                max-width: 160px;
            }
        }
        /* Section Styling */
        section {
            padding: 5rem 0;
            padding-top: 6em;
        }
       
        .oppo-back{
               background: linear-gradient(rgba(18, 18, 18, 0.1), var(--glass));
        }
        /* Card Styling */
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        
        .card {
            background:white;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
        }
        
        .card-header {
            padding: 1.5rem;
            border-bottom: 1px solid #e2e8f0;
        }
        
        .card-body {
            padding: 1.5rem;
        }
        .opportunity-card .card-body p{
            font-size: 1.15em;
        }
        .card img{
            height: 300px;
            background-position: top;
        width: 300px;
        }
        /* Investment Opportunities */
        .opportunity-card .card-header {
            background-color: rgba(235, 172, 37, 0.09);
              /* background: linear-gradient(rgba(34, 28, 0, 0.4), var(--glass)); */
              border: none;
            border-bottom: 2px solid var(--secondary);
        }
        
        .opportunity-card h3 {
           color: var(--secondary);
            display: flex;
            font-size: 1.3em;
            align-items: center;
            gap: 10px;
        }
     
        .opportunity-card .stats {
            display: flex;
            justify-content: space-between;
            margin-top: 1rem;
        }
        
        .stat {
            text-align: center;
        }
        
        .stat-value {
            font-size: 1.8rem;
            font-weight: 700;
     color: var(--secondary);
        }
        
        .stat-label {
            font-size: 0.9rem;
            color: var(--primary);
        }
        
        /* ROI Calculator */
         .calculator-body{
              background: white;
        }
        .calculator {
            background: rgb(255, 255, 255);
            
            border-radius: 12px;
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            padding: 2.5rem;
            max-width: 800px;
            margin: 0 auto;
        }
       
        .calculator-controls {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin-bottom: 2rem;
        }
        
       
        .input-group {
            margin-bottom: 1.5rem;
        }
        
        .input-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
            color: var(--primary);
        }
        
        .input-group input {
            width: 100%;
            padding: 0.8rem 1rem;
            border: 1px solid var(--secondary);
            border-radius: 8px;
            font-size: 1rem;
        }
        .input-group select{
               
           width: 100%;
            padding: 0.8rem 1rem;
           border: 1px solid var(--secondary);
            border-radius: 8px;
            font-size: 1rem;
        }
        .input-group input:focus,.input-group select:focus {
            outline: none;
            border-color: var(--gold-dark);
        }
         .input-group select option{
              background-color: rgba(248, 204, 5, 0.05);
        }
         .input-group select:hover{
                 background-color: rgba(248, 204, 5, 0.05);
                 cursor: pointer;
        }
        .range-slider {
            -webkit-appearance: none;
            width: 100%;
            height: 8px;
            border-radius: 8px;
             background-color: rgba(248, 204, 5, 0.05);
            outline: none;
        }
        
        .range-slider::-webkit-slider-thumb {
            -webkit-appearance: none;
            width: 22px;
            height: 22px;
            border-radius: 50%;
            background: var(--secondary);
            cursor: pointer;
        }
        
        .calculator-results {
            background-color: rgba(248, 204, 5, 0.05);
         border-radius: 12px;
            padding: 2rem;
            margin-top: 2rem;
            text-align: center;
        }
        .calculator-results h3{
            color: var(--primary);
        }
        .result-value {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--secondary);
            margin: 1rem 0;
        }
        .calculator .btn{
            padding:1em;
              display: flex;
            margin: auto;
            text-align: center;
            justify-content: center;
            align-items: center;
          
        }
        
        /* Investment Guides */
       /* Investment Guides Section */
/* ===== INVESTMENT GUIDES – REFINED GOLD & WHITE STYLING ===== */
#guides {
    background: #fdf9e6;  /* warm off-white to match page background */
    padding: 5rem 0;
}

#guides .section-header p {
    color: #5a4a2a;        /* dark gold-brown for readability */
}

.guide-card {
    background: #ffffff;
    border: 1px solid #f0e2b0;      /* soft gold border */
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.1); /* subtle gold glow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.guide-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 35px rgba(212, 175, 55, 0.25);
    border-color: #d4af37;           /* richer gold on hover */
}

.guide-card .card-header {
    padding: 1.5rem;
    background: #fef9e7;             /* very light gold tint */
    border-bottom: 1px solid #eed9a5;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.guide-icon {
    width: 52px;
    height: 52px;
    background: #d4af37;             /* solid gold */
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #ffffff;                   /* white icon for contrast */
}

.guide-badge {
    background: #d4af37;
    color: #ffffff;
    padding: 0.3rem 1rem;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.guide-badge.premium {
    background: linear-gradient(135deg, #d4af37, #b8860b);
    color: white;
}

.guide-card .card-body {
    padding: 1.8rem 1.5rem;
    background: #ffffff;
    flex-grow: 1;
}

.guide-card .card-body h3 {
    color: #2d2a1c;           /* deep warm black */
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.guide-card .card-body p {
    color: #5a4f3a;           /* warm grey-brown */
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.guide-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
}

.guide-features li {
    color: #3f3a2e;
    padding: 0.5rem 0;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    border-bottom: 1px dashed #f0e2b0;
}

.guide-features li:last-child {
    border-bottom: none;
}

.guide-features li i {
    color: #d4af37;
    margin-right: 0.9rem;
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.guide-card .card-footer {
    padding: 1.5rem;
    background: #fdf9e6;      /* warm light gold */
    border-top: 1px solid #eed9a5;
    display: flex;
    gap: 0.8rem;
}

/* Buttons – gold & white only */
.btn-guide {
    padding: 0.7rem 1.2rem;
    border-radius: 50px;       /* pill shape */
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex: 1;
}


/* Section CTA stays consistent */
.section-cta {
    text-align: center;
    margin-top: 4rem;
}

.section-cta p {
    font-size: 1.2rem;
    color: #5a4a2a;
    margin-bottom: 1.5rem;
}


/* disabled cards */
/* Disabled guide cards */
.guide-card.disabled-card {
    opacity: 0.7;
    filter: grayscale(0.3);
    pointer-events: none;  /* prevents any interaction */
}

.guide-card.disabled-card .guide-icon.disabled {
    background: #c0b28a;           /* muted gold */
    color: #fff;
}

.guide-card.disabled-card .guide-badge.coming-soon {
    background: #a28e5c;
    color: #fff;
}

.guide-card.disabled-card .card-footer.disabled {
    background: #f5efe0;
    border-top-color: #d4b97b;
    justify-content: center;
}

.btn-guide.disabled-btn {
    background: #e9dbbd;
    color: #7a6a48;
    border: none;
    width: 100%;
    cursor: default;
    box-shadow: none;
}

.guide-card.disabled-card .guide-features i {
    color: #b8a267;
}
/* modal / toast remain as they are – but ensure no blue creeps in */

/* Modal Styles */
/* ---------- MODAL (gold/white) ---------- */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: #fff;
    width: 90%;
    max-width: 500px; /* email modal smaller */
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid #f0e2b0;
    animation: modalFadeIn 0.3s ease;
}

#previewModal .modal-content {
    max-width: 900px; /* preview modal wider */
}

@keyframes modalFadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.modal-header {
    padding: 1.2rem 2rem;
    background: #fef9e7;
    border-bottom: 1px solid #eed9a5;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 24px 24px 0 0;
}

.modal-header h3 {
    color: #2d2a1c;
    font-family: 'Playfair Display', serif;
    margin: 0;
}

.close-modal {
    color: #b38f2c;
    font-size: 2rem;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.2s;
    line-height: 1;
}
.close-modal:hover {
    color: #5a4a2a;
}

.modal-body {
    padding: 2rem;
    background: #fff;
    max-height: 70vh;
    overflow: auto;
}

#pdfIframe {
    border: 1px solid #eed9a5;
    border-radius: 12px;
    background: #fafafa;
}

.modal-footer {
    padding: 1.2rem 2rem;
    background: #fdf9e6;
    border-top: 1px solid #eed9a5;
    text-align: right;
    border-radius: 0 0 24px 24px;
}


.status-message {
    padding: 0.75rem;
    border-radius: 8px;
    font-size: 0.9rem;
}
.status-message.success {
    background: #e7f3e7;
    color: #2e7d32;
    border: 1px solid #a5d6a7;
}
.status-message.error {
    background: #fdecea;
    color: #c62828;
    border: 1px solid #ef9a9a;
}

/* ---------- DISABLED CARDS (coming soon) ---------- */
.guide-card.disabled-card {
    opacity: 0.8;
    filter: grayscale(0.3);
    pointer-events: none;
}

.guide-card.disabled-card .guide-icon.disabled {
    background: #c0b28a;
    color: #fff;
}

.guide-card.disabled-card .guide-badge.coming-soon {
    background: #a28e5c;
    color: #fff;
}

.guide-card.disabled-card .card-footer.disabled {
    background: #f5efe0;
    border-top-color: #d4b97b;
    justify-content: center;
}

.btn-guide.disabled-btn {
    background: #e9dbbd;
    color: #7a6a48;
    border: none;
    width: 100%;
    cursor: default;
    box-shadow: none;
}

.guide-card.disabled-card .guide-features i {
    color: #b8a267;
}
/* Toast Notification */
.toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 1rem;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1001;
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.toast-icon {
    color: var(--secondary);
    font-size: 1.5rem;
}

.toast-message strong {
    color: var(--gold-light);
    display: block;
    font-size: 0.9rem;
}

.toast-message p {
    color: var(--text);
    font-size: 0.8rem;
    opacity: 0.8;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .card-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        max-height: 80vh;
    }
    
    .email-capture {
        flex-direction: column;
    }
    
    .guide-card .card-footer {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
}
        
        /* Current Projects */
      /* ---------- Current Projects Section ---------- */
.invest-projects {
    background: #ffffff;  /* clean white background */
    padding: 5rem 0;
}

.project-card {
    background: #ffffff;
    border: 1px solid #f0e2b0;
    border-radius: 24px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15);
    border-color: #d4af37;
}

.project-img {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-img img {
    transform: scale(1.05);
}

.coming-soon-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #d4af37;
    color: #ffffff;
    padding: 0.5rem 1.2rem;
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.project-card .card-body {
    padding: 1.8rem 1.5rem 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.project-card h3 {
    color: #2d2a1c;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    font-family: 'Playfair Display', serif;
}

.project-card p {
    color: #5a4f3a;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
}

.tag {
    background: #fef9e7;
    color: #5a4a2a;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid #eed9a5;
}

.progress-section {
    margin-bottom: 1.8rem;
}

.progress-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.progress-label {
    color: #5a4a2a;
    font-weight: 500;
}

.progress-percent {
    color: #d4af37;
    font-weight: 700;
}

.progress-bar {
    height: 8px;
    background: #f0e2b0;
    border-radius: 20px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: #d4af37;
    border-radius: 20px;
    width: 0%;
    transition: width 0.3s ease;
}

.project-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    text-align: center;
    border-top: 1px dashed #eed9a5;
    padding-top: 1.5rem;
    margin-top: 0.5rem;
}

.project-stats .stat {
    display: flex;
    flex-direction: column;
}

.project-stats .stat-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2d2a1c;
    margin-bottom: 0.25rem;
}

.project-stats .stat-value i {
    color: #d4af37;
    font-size: 0.9rem;
    margin-right: 2px;
}

.project-stats .stat-label {
    font-size: 0.75rem;
    color: #8b7f62;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}
.funding-badge {
    display: inline-block;
    background: #fef9e7;
    color: #5a4a2a;
    border: 1px solid #d4af37;
    border-radius: 40px;
    padding: 0.5rem 1.8rem;
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 1rem;
}
.funding-note {
    margin-top: 1.2rem;
    padding-top: 1rem;
    border-top: 1px dashed #eed9a5;
    color: #5a4a2a;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.funding-note i {
    color: #d4af37;
    font-size: 1rem;
}

.funding-note strong {
    color: #2d2a1c;
    font-weight: 600;
}
/* Coming soon card slightly muted */
.project-card.coming-soon {
    opacity: 0.9;
}

.project-card.coming-soon .progress-fill {
    background: #c0b28a;
}

          /* Investor Relations */
        
        .investor-card {
            text-align: center;
        }
      .investor-card p{
        color: var(--gold-dark);
      }
          #investor-1{
            background: url(../images/invest-real-2.jpg);
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
                 transition: all .3s ease;
        }
          #investor-2{
            background: url(../images/invest-real-3.jpg);
            background-position: top;
            background-repeat: no-repeat;
            background-size: cover;
                 transition: all .3s ease;
        }
          #investor-3{
            background: url(../images/invest-real.jpg);
            background-position: top;
            background-repeat: no-repeat;
            background-size: cover;
                 transition: all .3s ease;
        }
          #investor-4{
            background:url(../images/invest-real-4.jpeg);
            background-position: top;
            background-repeat: no-repeat;
            background-size: cover;
            transition: all .3s ease;
        }
        #investor-5{
            background:url(../images/invest-real-5.jpeg);
            background-position: top;
            background-repeat: no-repeat;
            background-size: cover;
            transition: all .3s ease;
        }
      
        /* ---------- Investor Cards ---------- */
/* ---------- Investor Cards ---------- */
.investors-section {
    background: #fdf9e6;
    padding: 5rem 0;
}

.investor-card {
    background: #ffffff;
    border: 1px solid #f0e2b0;
    border-radius: 24px;
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding-bottom: 2rem;
}

.investor-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 30px rgba(212, 175, 55, 0.15);
    border-color: #d4af37;
}

.investor-avatar {
    width: 100%;
    height: 350px;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.investor-card:hover .investor-avatar {
    transform: scale(1.03);
}

/* Placeholder style if no image */
.investor-avatar.placeholder {
    background: linear-gradient(135deg, #f9e7b3, #d4af37);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
}

.investor-card .card-body {
    padding: 1.5rem 1rem 0.5rem;
}

.investor-card h3 {
    color: #2d2a1c;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    font-family: 'Playfair Display', serif;
}

.investor-title {
    color: #d4af37;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.3px;
}
/* --------- Investment Form & Contact ---------- */
@media (max-width:768px){
.investor-card {
     width: 100%;
    height: auto;
}
}


     MOBILE TOGGLE BUTTONS STYLING
   /*============================================ */

.mobile-toggle-buttons {
    position: relative;
    margin: 20px auto 30px;
    max-width: 400px;
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.toggle-container {
    display: flex;
    position: relative;
    z-index: 1;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    padding: 4px;
}

.toggle-btn {
    flex: 1;
    padding: 12px 20px;
    border: none;
    background: transparent;
    color: #666;
    font-weight: 600;
    font-size: 14px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.5px;
    z-index: 2;
}

.toggle-btn.active {
    color: #fff;
    background: linear-gradient(135deg, var(--gold-medium), var(--gold-dark),var(--secondary));
    box-shadow: 0 4px 15px rgba(234, 199, 102, 0.363);
}

.toggle-btn:not(.active):hover {
    color: #333;
    background: rgba(255, 255, 255, 0.2);
}

.toggle-indicator {
    position: absolute;
    top: 8px;
    height: calc(100% - 16px);
    width: 50%;
     background: linear-gradient(135deg, var(--primary), var(--gold-dark),var(--gold-medium));
    border-radius: 10px;
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 4px 15px rgba(234, 221, 102, 0.3);
    z-index: 0;
}



/* Optional: Add some animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-content.mobile-active,
.form-info.mobile-active {
    animation: fadeInUp 0.5s ease;
}
/* Contact Form Section */
.form-section {
    background: white;
}
.form-container {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* Left Column – Contact Info */
.form-info {
    background: linear-gradient(135deg, var(--primary), var(--gold-dark), var(--primary));
    color: white;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.form-info h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}
.contact-methods {
    margin-top: 2rem;
}
.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.contact-icon-large {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    font-size: 1.5rem;
}

/* Business Hours */
.business-hours {
    background: rgba(172, 172, 112, 0.3);
    box-shadow: 0 15px 40px rgba(10, 25, 47, 0.15);
    border-radius: 4px;
    padding: 20px;
    margin-top: 20px;
}
.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--gold-dark);
}
.hours-item:last-child {
    border-bottom: none;
}
.day {
    color: var(--primary);
}
.hours {
    color: var(--primary);
    font-weight: 500;
}

/* Social Media */
.social-media {
    text-align: center;
    margin-top: 30px;
}
.social-media h4 {
    margin-bottom: 20px;
    font-size: 1.3rem;
}
.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}
.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 1.4rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.3);
}
.social-icons a:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold-dark);
    transform: translateY(-5px);
}

/* Right Column – Form */
.form-content {
    padding: 3rem;
}
.form-group {
    margin-bottom: 1.5rem;
}
.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 1rem;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

/* WhatsApp CTA Button */
.whatsapp-cta {
    width: 100%;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    padding: 1rem;
    box-shadow: 0 8px 25px rgba(18, 140, 126, 0.4);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    margin-top: 1.5rem;
    transition: background-color 0.3s;
}
.whatsapp-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(18, 140, 126, 0.6);
    color: white;
    background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
}

/* Status Message (for form feedback) */
.status-message {
    padding: 15px;
    border-radius: 8px;
    margin-top: 1.5rem;
    text-align: center;
    font-weight: 500;
    display: none;
    animation: fadeIn 0.5s;
}
.status-success {
    background-color: rgba(40, 167, 69, 0.15);
    border: 1px solid rgba(40, 167, 69, 0.2);
    color: #198754;
    display: block;
}
.status-error {
    background-color: rgba(220, 53, 69, 0.15);
    border: 1px solid rgba(220, 53, 69, 0.2);
    color: #dc3545;
    display: block;
}
.status-sending {
    background-color: var(--gold-dark);
    border: 1px solid var(--gold-dark);
    display: block;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive */
@media (max-width: 900px) {
    .contact-method {
        display: block;
        align-items: center;
    }
    .contact-method p {
        font-size: 0.9em;
    }
    .contact-method h4 {
        margin-top: 0.5rem;
    }
}
      /*  */
   
        /* Certificates Gallery */
       /* ---------- Investor Certificates Section ---------- */
.certificates-section {
    background: #ffffff;
    padding: 5rem 0;
      background: linear-gradient(rgba(18, 18, 18, 0.1), var(--glass));
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.cert-card {
    background: #fff;
    border: 1px solid #f0e2b0;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.1);
}

.cert-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 30px rgba(212, 175, 55, 0.2);
    border-color: #d4af37;
}

.cert-image-wrapper {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-bottom: 2px solid #eed9a5;
}

.cert-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.cert-card:hover .cert-image-wrapper img {
    transform: scale(1.1);
}

.cert-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(2px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cert-card:hover .cert-overlay {
    opacity: 1;
}

.cert-overlay i {
    color: #ffffff;
    font-size: 2.5rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.cert-info {
    padding: 1.2rem 1rem 1.5rem;
    text-align: center;
}

.cert-info h3 {
    color: #2d2a1c;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    font-family: 'Playfair Display', serif;
}

.cert-info p {
    color: #5a4a2a;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ---------- Lightbox Modal ---------- */
.cert-modal {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
}

.cert-modal-content {
    max-width: 90%;
    max-height: 80%;
    text-align: center;
    animation: zoom 0.3s ease;
}

@keyframes zoom {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.cert-modal-content img {
    width: auto;
    max-width: 100%;
    max-height: 70vh;
    border: 4px solid #d4af37;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.cert-modal-caption {
    color: #f0e2b0;
    font-size: 1.2rem;
    padding: 1rem 0;
    font-weight: 500;
}

.cert-modal-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #f0e2b0;
    font-size: 3rem;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.2s;
    line-height: 1;
}
.cert-modal-close:hover {
    color: #d4af37;
}

/* Responsive */
@media (max-width: 768px) {
    .cert-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
    .cert-image-wrapper {
        height: 160px;
    }
    .cert-modal-close {
        top: 15px;
        right: 20px;
        font-size: 2.5rem;
    }
    .cert-overlay {
    opacity: 1;
}

}
    /* logos */


  /* Footer */

          .footer {
             background-color:  rgba(15, 14, 0, 0.7);
            color: rgb(247, 243, 243);
            padding: 0px 0 0;
            position: relative;
            overflow: hidden;
    font-family: 'Montserrat', sans-serif;
        }
        
        /* Decorative Elements */
        .footer::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 1px;
            background: linear-gradient(90deg, var(--secondary), var(--gold-light), var(--gold-medium))
        }
        
        .contain-decor{
              background: linear-gradient(rgba(18, 18, 18, 0.1), var(--glass));
              padding: 2em;
              border: 10px;
        }
        /* Footer Columns */
        .footer-column {
            margin-bottom: 20px;
            padding: 1em;
        }
        
        .footer-column h3 {
            color: var(--secondary);
            color: white;
            font-size: 1.4rem;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
            font-weight: 600;
              font-family: 'Playfair Display', serif;
        }
        
        .footer-column h3::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background: var(--gold-medium);
        }
        
        .footer-about p {
            color: #cacaca;
            line-height: 1.7;
            margin-bottom: 20px;
        }
        
        /* Social Links */
        .social-links-footer {
            display: flex;
            gap: 15px;
        }
        
        .social-links-footer a {
      
            color: white;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: rgba(212, 175, 55, 0.1);
            text-decoration: none;
        }
         .social-links-footer a:hover {
            background: #ffffff;
                 color: var(--gold-medium);
            transform: translateY(-5px);
        }
        /* Footer Lists */
        .footer-list {
            list-style: none;
            padding: 0;
        }
        
        .footer-list li {
            margin-bottom: 12px;
        }
        
        .footer-list a {
            color: #cacaca;;
            text-decoration: none;
            transition: all 0.3s ease;
            display: block;
            padding: 5px 0;
            position: relative;
            padding-left: 20px;
        }
        
        /* Contact Info */
        .contact-info {
            list-style: none;
            padding: 0;
        }
        
        .contact-info li {
            color: #cacaca;
            margin-bottom: 20px;
            display: flex;
            align-items: flex-start;
        }
        
        .footer .contact-info i {
            
            color: var(--gold-medium);
            color: white;
            margin-right: 15px;
            min-width: 20px;
            margin-top: 4px;
        }
        
        /* Newsletter */
        .newsletter-section {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding: 40px 0;
            margin: 40px 0;
        }
        
        .newsletter-container {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            align-items: center;
            justify-content: space-between;
        }
        
        .newsletter-text h4 {
              color: white;
            font-size: 1.3rem;
            margin-bottom: 10px;
        }
        
        .newsletter-text p {
          color: #cacaca;
            margin: 0;
        }
        
        .newsletter-form {
            display: flex;
            flex: 1;
            min-width: 300px;
        }
        
        .newsletter-input {
            flex: 1;
            padding: 12px 20px;
            border: none;
           
            background: rgba(36, 31, 8, 0.5);
            color: white;
            border-radius: 4px 0 0 4px;
            outline: none;
        }
        
        .newsletter-button {
            background: linear-gradient(135deg, var(--gold-medium) 0%, var(--secondary) 100%);
            color: var(--primary);
            border: none;
            padding: 0 25px;
            font-weight: 600;
            cursor: pointer;
            border-radius: 0 4px 4px 0;
            transition: all 0.3s ease;
        }
        
        /* Footer Bottom */
        .footer-bottom {
            background: rgba(0, 0, 0, 0.2);
            padding: 25px 0;
            text-align: center;
        }
        
        .footer-bottom-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .copyright {
              color: #cacaca;
            /* margin: 0; */
            text-align: center;
        }
        
        .footer-links {
            display: flex;
            gap: 15px;
        }
        
        .footer-links a {
             color: #cacaca;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        /* Hover Effects */
        .footer-list a:hover,
        .footer-list a:focus {
            color: var(--secondary);
            transform: translateX(5px);
        }
        
        .footer-list a::before {
            content: "";
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 8px;
            height: 8px;
            background: var(--gold-medium);
            border-radius: 50%;
            opacity: 0;
            transition: all 0.3s ease;
        }
        
        .footer-list a:hover::before,
        .footer-list a:focus::before {
            opacity: 1;
        }
        
        .social-links a:hover {
            color: var(--gold-light);
            background: rgba(212, 175, 55, 0.2);
            transform: translateY(-3px);
        }
        
        .newsletter-button:hover {
            background: linear-gradient(135deg, var(--secondary) 0%, var(--gold-medium) 100%);
            box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
        }
        
                /* Footer Legal Links */
.footer-legal {
    text-align: center;
    margin-top: 15px;
    font-size: 0.9rem;
}

.footer-legal a {
    color: #cacaca;                /* matches other footer link color */
    text-decoration: none;
    transition: color 0.3s ease;
    margin: 0 8px;
    display: inline-block;
}

.footer-legal a:hover {
    color: var(--secondary);       /* gold – #dfb429 */
}

.footer-legal .separator {
    color: #cacaca;
    opacity: 0.5;
    font-weight: 300;
    display: inline-block;
}

        /* Responsive Design */
        @media (max-width: 768px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
            
            .newsletter-container {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .newsletter-form {
                width: 100%;
            }
            
            .footer-bottom-container {
                flex-direction: column;
            }
             /* .stats-container .stat-label p {
             text-align:center;

        } */
        
        }
        
        @media (max-width: 480px) {
            .footer-grid {
                grid-template-columns: 1fr;
            }
        }
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        /* Responsive */
      

        @media (max-width: 992px) {
            .footer-container {
                grid-template-columns: repeat(2, 1fr);
            }
            
          
        }
         
    







